put "The following text was entered into your Personal Affirmation statement:" & RETURN & RETURN after vTempText
put the text of member "self statement" & RETURN after vTempText
set the text of member "affirmation" to vTempText
end
on getResponses
global gCritterWord
set vTempText to EMPTY
set the text of member "responses" to EMPTY
put "Non-productive Responses to Change reflection questions and your answers:" & RETURN & RETURN after vTempText
put "This is the animal you selected in your chair at the conference table:" & RETURN & gCritterWord & RETURN & RETURN after vTempText
put "1. What have you learned about your own reaction to change?" & RETURN & the text of member "memo 1" & RETURN & RETURN after vTempText
put "2. What might make change easier for you?" & RETURN & the text of member "memo 2" & RETURN & RETURN after vTempText
put "3. What are some strategies that you might suggest to other employees that might help them during times of rapid change?" & RETURN & the text of member "memo 3" & RETURN & RETURN after vTempText
set the text of member "responses" to vTempText
end
on getChefData
set vTempText to EMPTY
set the text of member "chef answers" to EMPTY
put "A Change in the Workplace: Eclair de Lune reflection questions and your answers." & RETURN & RETURN after vTempText
put "What do you believe each of the pastry chefs will say in the meeting? What would you say?" & RETURN & the text of member "chef field A" & RETURN & RETURN after vTempText
put "1. In your opinion, as a strategy for implementing change, is it better to try to reduce resistance or to increase pressure to accept change?" & RETURN & the text of member "chef field 1" & RETURN & RETURN after vTempText
put "2. What factors determine the effectiveness of change?" & RETURN & the text of member "chef field 2" & RETURN & RETURN after vTempText
put "3. What do you believe normally happens to resistance when affected employees participate in planning for change?" & RETURN & the text of member "chef field 3" & RETURN & RETURN after vTempText
put "4. When resistance is caused by negative attitudes and emotions, how should a group leader respond?" & RETURN & the text of member "chef field 4" & RETURN & RETURN after vTempText
set the text of member "chef answers" to vTempText
end
on getGraphPlot
global gGraphScores
set vTempText to EMPTY
set the text of member "plot results" to EMPTY
set vPlotCats to ["Feeling Unsettled", "Denying", "Resisting", "Bargaining", "Depression", "Acceptance", "Letting Go", "Envisioning", "Committed to Action"]
put "Plotting Change" & RETURN & RETURN after vTempText
put "The change situation you entered for consideration is:" & RETURN & the text of member "situation" & RETURN & RETURN after vTempText
put "The graph points you selected for the stages of change are:" & RETURN & RETURN after vTempText
repeat with X = 1 to 9
put getAt(vPlotCats, X) & ": " & string(getAt(gGraphScores, X)) & RETURN after vTempText
end repeat
set the text of member "plot results" to vTempText
end
on getPaperData
set vTempText to EMPTY
set the text of member "toss results" to EMPTY
put "The Paper Toss" & RETURN & RETURN after vTempText
put "The negative feelings that you described are:" & RETURN & the text of member "paper negative" & RETURN & RETURN after vTempText
put "The positive feelings that you described are:" & RETURN & the text of member "paper positive" & RETURN & RETURN after vTempText
set the text of member "toss results" to vTempText
end
on getAllPart2
global gAllPart_2
set partA to the text of member "affirmation"
set partB to the text of member "responses"
set partC to the text of member "chef answers"
set partD to the text of member "plot results"
set partE to the text of member "toss results"
set gAllPart_2 to "Answers from Part 2, Tools for Change:" & RETURN & "--------------------------------------------------" & RETURN & RETURN & partA & RETURN & partB & RETURN & partC & RETURN & partD & RETURN & partE
end
on menuPrint
global gMasterData, gAllPart_2
if iAmActivated(gMasterData) then
getAllPart2()
set the text of member "PrintAllPart2" to gAllPart_2
print(the text of member "PrintAllPart2")
else
alert("Printing is unavailable until an activity is completed.")